var runtime.test_z64

12 uses

	runtime (current package)
		runtime1.go#L103: var test_z64, test_x64 uint64
		runtime1.go#L106: 	test_z64 = 42
		runtime1.go#L108: 	if atomic.Cas64(&test_z64, test_x64, 1) {
		runtime1.go#L115: 	if !atomic.Cas64(&test_z64, test_x64, 1) {
		runtime1.go#L118: 	if test_x64 != 42 || test_z64 != 1 {
		runtime1.go#L121: 	if atomic.Load64(&test_z64) != 1 {
		runtime1.go#L124: 	atomic.Store64(&test_z64, (1<<40)+1)
		runtime1.go#L125: 	if atomic.Load64(&test_z64) != (1<<40)+1 {
		runtime1.go#L128: 	if atomic.Xadd64(&test_z64, (1<<40)+1) != (2<<40)+2 {
		runtime1.go#L131: 	if atomic.Load64(&test_z64) != (2<<40)+2 {
		runtime1.go#L134: 	if atomic.Xchg64(&test_z64, (3<<40)+3) != (2<<40)+2 {
		runtime1.go#L137: 	if atomic.Load64(&test_z64) != (3<<40)+3 {